home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / include / scribus-ng / annota.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-09-30  |  2.1 KB  |  86 lines

  1. /*
  2. For general Scribus (>=1.3.2) copyright and licensing information please refer
  3. to the COPYING file provided with the program. Following this notice may exist
  4. a copyright and/or license notice that predates the release of Scribus 1.3.2
  5. for which a new license (GPL+exception) is in place.
  6. */
  7. /***************************************************************************
  8.  *                                                                         *
  9.  *   This program is free software; you can redistribute it and/or modify  *
  10.  *   it under the terms of the GNU General Public License as published by  *
  11.  *   the Free Software Foundation; either version 2 of the License, or     *
  12.  *   (at your option) any later version.                                   *
  13.  *                                                                         *
  14.  ***************************************************************************/
  15. #ifndef ANNOTA_H
  16. #define ANNOTA_H
  17.  
  18. #include <QDialog>
  19. class QHBoxLayout;
  20. class QGridLayout;
  21. class QVBoxLayout;
  22. class QFrame;
  23. class QLabel;
  24. class QComboBox;
  25. class QStackedWidget;
  26. class QGroupBox;
  27. class QLineEdit;
  28. class QPushButton;
  29. class QSpinBox;
  30. class QCheckBox;
  31.  
  32. #include "scribusapi.h"
  33.  
  34. class PageItem;
  35. class Navigator;
  36. class ScribusView;
  37.  
  38. class SCRIBUS_API Annota : public QDialog
  39. {
  40.     Q_OBJECT
  41.  
  42. public:
  43.     Annota(QWidget* parent, PageItem *it, int Seite, int b, int h, ScribusView* vie);
  44.     ~Annota() {};
  45.     QStackedWidget* Fram;
  46.     QLabel* TextLabel1;
  47.     QComboBox* ComboBox1;
  48.     QGroupBox* GroupBox1;
  49.     QLabel* TextLabel3;
  50.     QLabel* TextLabel4;
  51.     QLabel* TextLabel5;
  52.     QLineEdit* Destfile;
  53.     QPushButton* ChFile;
  54.     QCheckBox* useAbsolute;
  55.     Navigator* Pg;
  56.     QSpinBox* SpinBox1;
  57.     QSpinBox* SpinBox2;
  58.     QSpinBox* SpinBox3;
  59.     QFrame* Frame9;
  60.     QPushButton* PushButton1;
  61.     QPushButton* PushButton2;
  62.     PageItem* item;
  63.     ScribusView* view;
  64.     int Breite;
  65.     int Hoehe;
  66.     int OriBreite;
  67.     int OriHoehe;
  68.     int MaxSeite;
  69.  
  70. public slots:
  71.     void SetCoords(double x, double y);
  72.     void SetPg(int v);
  73.     void SetCross();
  74.     void SetVals();
  75.     void SetTarget(int i);
  76.     void GetFile();
  77.  
  78. protected:
  79.     QVBoxLayout* AnnotLayout;
  80.     QHBoxLayout* Layout1;
  81.     QGridLayout* GroupBox1Layout;
  82.     QHBoxLayout* Layout1_2;
  83. };
  84.  
  85. #endif // ANNOT_H
  86.